home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.5)
-
- from util import FunctionList
-
- class Clique(set):
-
- def __setattr__(self, attr, val):
- for o in self:
- setattr(o, attr, val)
-
-
-
- def __getattr__(self, attr):
-
- try:
- return set.__getattr__(self, attr)
- except AttributeError:
-
- try:
- return self.__dict__[attr]
- except KeyError:
-
- default = lambda *a, **k: pass
- res = (None, FunctionList)((lambda .0: for x in .0:
- getattr(x, attr, default))(self))
- return res
- except:
- None<EXCEPTION MATCH>KeyError
-
-
- None<EXCEPTION MATCH>KeyError
-
-
-
- def __repr__(self):
- return '<%s: %r>' % (type(self).__name__, set.__repr__(self))
-
-
-